找传奇、传世资源到传世资源站!

java 飞机大战 游戏源码下载

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

 经典飞机大战,通过鼠标移动控制飞机移动击落敌机获得得分,在击落敌机的同时注意规避敌机子弹,在飞行过程中随机掉落道具,子弹增加,以及补充血量,清屏敌机。在击落boss后游戏通关。学习线程的经典案例from clipboardfrom clipboard from clipboard from clipboard from clipboard from clipboard from clipboard
//子弹撞敌机
public boolean bulletEp(Bullet bullet){
boolean f=false;
if(bullet.isLive){
if(bullet.x bullet.bImg.getWidth(null)>=x&&bullet.x<=x img.getWidth(null)
&&bullet.y>=y&&bullet.y<=y img.getHeight(null)){
if(isLive){
hp--;
}
bullet.isLive=false;
if(hp==0){
            time--;
isLive=false;
f=true;
}
}

}
return f;
}
//英雄级撞敌机
public boolean heroEnemy(ShootJPanel panel){
boolean f=false;
if(panel.hx panel.p[0].getWidth()/2>=x&&panel.hx panel.p[0].getWidth()/2<=x img.getWidth(null)
&&panel.hy panel.p[0].getHeight()/2>=y&&panel.hy panel.p[0].getHeight()/2<=y img.getHeight(null)){
if(isBoss){
panel.isLive=false;
panel.hhp=0;
}else{ 
 if(isLive)
 panel.hhp--;
 isLive=false;
 img=new ImageIcon("images/blast/blast_1.png").getImage();
 if(panel.hhp==0){
 panel.isLive=false;
 f=true;
     }
   }
  }
return f;
}
//英雄机吃道具
  public boolean eatAward(ShootJPanel panel){
 boolean f=false;
 if(panel.hx panel.p[0].getWidth()/2>=x&&panel.hx panel.p[0].getWidth()/2<=x img.getWidth(null)
&&panel.hy panel.p[0].getHeight()/2>=y&&panel.hy panel.p[0].getHeight()/2<=y img.getHeight(null)){
 f=true;
 isLive=false;
 }
 return f;
  }

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复